{% load static %} {% include "header.html" %} {% include "navigation.html" %}

Register


{% if data.status == "wrong_invite" %}
Sorry, this invitation code is not valid.
{% elif data.status == "already" %}
You are already signed in, cannot create a new account.
{% elif data.status == "something_missing" %}
Some input (email/password/invitation code) is missing.
{% elif data.status == "activated" %}
Ok, account created!

You signed up with the following email address: {{data.user.email}}. If this is wrong, change it now in your account settings.

Start by clicking on the top-right menu icon. {% else %}

Welcome!

{% if INVITATION_CODE_ENABLED %} An invitation code is required to register on the platform. If you have one, then you can sign up right now. Otherwise, please get in touch. {% else %} Enter your email address and choose a password to register on the platform. {% endif %}





{% endif %} {% if data.error %}
{{ data.error }}
{% endif %}





{% include "footer.html" %}